home *** CD-ROM | disk | FTP | other *** search
/ Magazyn WWW 1999 April / cd24-www.iso / prog / mac / snak / snak.hqx / Snak 2.0.2 / Scripts / list < prev    next >
Text File  |  1998-06-25  |  251b  |  15 lines

  1. # Kent Sorensen 06/25/98 : this file is from the standard distribution of ircII
  2.  
  3. # showlist <list of items>
  4.  
  5. alias showlist {
  6.     @ sl.cnt = 0
  7.     while (sl.wrd = [$($sl.cnt)])
  8.     {
  9.         echo $sl.wrd
  10.         @sl.cnt = sl.cnt + 1
  11.     }
  12.     ^assign -sl.cnt
  13.     ^assign -sl.wrd
  14. }
  15.